home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib1
/
v_01_03
/
1n03032b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
515 b
|
20 lines
case WM_COMMAND:
switch(wParam){
case IDM_ITEM1_1:
DoSomething();
break;
case IDM_ITEM1_2:
DoSomethingElse();
break;
case IDM_ITEM1_3:
DoSomeMoreProcessing();
break;
case IDM_EXIT:
SendMessage(hWnd,WM_DESTROY,0,0L);
break;
default:break;
}
break;